2017-10-13 shell 练习-被3整除 shell练习 写一个脚本: 计算100以内所有能被3整除的正整数的和 12345678#!/bin/bashsum=0for i in {1..100};do if [ $[$i%3] -eq 0 ];then sum=$[$i+$sum] fidoneecho "sum:$sum" < shell 练习-脚本传参 shell 练习-带选项的用户脚本 >